home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Two Way Linked List / two way.sea / Two_way / monster.h < prev    next >
Text File  |  1994-04-24  |  992b  |  29 lines

  1. /********************************************************/
  2. /*                                                      */
  3. /*                 Monster.h                            */
  4. /*                 A test Header for: Two_Way_List      */
  5. /*                 Copyright 4/24/94 Hasan Edain        */
  6. /*                 All Reights Reserved Worldwide       */
  7. /*                                                      */
  8. /********************************************************/
  9.  
  10. //    Please feel free to modify and use this code for any purpose, as long as you
  11. // send me
  12. // a) source of the modified code.
  13. // b) licenced version of product the code is used in.
  14. // c) notes as to how the code could be made more usefull if you tried to use it, but
  15. // ended up not using it for any reason.
  16. // Hasan Edain
  17. // HasanEdain@AOL.com
  18. // box 667 Langley Wa 98260
  19. // fax: 206-579-6456
  20.  
  21.  
  22. typedef struct monster{
  23.     char    name[80];
  24.     short    st;
  25.     short    in;
  26.     short    dx;
  27. }monster;
  28.  
  29. void printMonster(monster *theMonster);